home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 1 / QRZ Ham Radio Callsign Database - December 1993.iso / ucsd / packet / tcpip / sys5 / iscwmpst.z / iscwmpst / tcp / src / hpux.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-02  |  689 b   |  25 lines

  1. /* @(#) $Header: hpux.h,v 1.9 91/06/01 22:18:09 deyke Exp $ */
  2.  
  3. #ifndef _HPUX_H
  4. #define _HPUX_H
  5.  
  6. #ifndef _GLOBAL_H
  7. #include "global.h"
  8. #endif
  9.  
  10. /* In hpux.c: */
  11. void ioinit __ARGS((void));
  12. void iostop __ARGS((void));
  13. int system __ARGS((const char *cmdline));
  14. int _system __ARGS((char *cmdline));
  15. int doshell __ARGS((int argc, char *argv [], void *p));
  16. void on_read __ARGS((int fd, void (*fnc)(void *), void *arg));
  17. void off_read __ARGS((int fd));
  18. void on_write __ARGS((int fd, void (*fnc)(void *), void *arg));
  19. void off_write __ARGS((int fd));
  20. void on_excp __ARGS((int fd, void (*fnc)(void *), void *arg));
  21. void off_excp __ARGS((int fd));
  22. void eihalt __ARGS((void));
  23.  
  24. #endif  /* _HPUX_H */
  25.